From bf922e93a73b6f01b152e72fa9eeadde0a92fadf Mon Sep 17 00:00:00 2001 From: Michael Schumacher Date: Sat, 6 Jan 2007 13:00:28 +0000 Subject: [PATCH] added EXEEXT to the tools used in some commands 2007-01-06 Michael Schumacher * docs/Makefile.am: added EXEEXT to the tools used in some commands * docs/tools/changelog2rss: remove unused SET_TITLE and LISTING_TYPE; the former did cause an error on Windows svn path=/trunk/; revision=191 --- ChangeLog | 8 ++++++++ docs/Makefile.am | 8 ++++---- docs/tools/changelog2rss | 4 ---- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 24c14ae..1ab279d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-01-06 Michael Schumacher + + * docs/Makefile.am: added EXEEXT to the tools used in some + commands + + * docs/tools/changelog2rss: remove unused SET_TITLE and + LISTING_TYPE; the former did cause an error on Windows + 2007-01-01 Kevin Cozens * docs/index-static.html.in: Fixes for various punctuation, grammar, diff --git a/docs/Makefile.am b/docs/Makefile.am index a30a6b6..7e3d230 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -29,13 +29,13 @@ MAINTAINERCLEANFILES = $(BUILT_EXTRA_DIST) all: $(HTML_FILES) rss -BablFishPath.html: $(top_builddir)/tests/babl_fish_path_dhtml +BablFishPath.html: $(top_builddir)/tests/babl_fish_path_dhtml$(EXEEXT) echo -n "HTML:" echo -n " $@" export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\ echo " [OK]" || echo " Fail" -BablFishPath.txt: $(top_builddir)/tests/babl_fish_path_fitness +BablFishPath.txt: $(top_builddir)/tests/babl_fish_path_fitness$(EXEEXT) echo -n "UTF8:" echo -n " $@" export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\ @@ -43,7 +43,7 @@ BablFishPath.txt: $(top_builddir)/tests/babl_fish_path_fitness if [ "x"$$CRUCIBLE_ID != "x" ] ;then echo;echo;cat $@;echo;echo;fi index.html: index-static.html \ - $(top_builddir)/tests/babl_html_dump \ + $(top_builddir)/tests/babl_html_dump$(EXEEXT) \ $(top_srcdir)/AUTHORS \ $(top_srcdir)/NEWS \ BablFishPath.txt \ @@ -51,7 +51,7 @@ index.html: index-static.html \ echo -n "HTML: $@" cp $< $@ (which tempfile > /dev/null&& TMPFILE=`tempfile` || TMPFILE="/tmp/babl_build_tempfile" ;\ - export BABL_PATH="$(top_builddir)/extensions"; $(top_builddir)/tests/babl_html_dump > $$TMPFILE;\ + export BABL_PATH="$(top_builddir)/extensions"; $(top_builddir)/tests/babl_html_dump$(EXEEXT) > $$TMPFILE;\ $(top_srcdir)/docs/tools/xml_insert.sh $@ BablBase $$TMPFILE;\ rm -f $$TMPFILE ) echo -n "." diff --git a/docs/tools/changelog2rss b/docs/tools/changelog2rss index 6cfc6e5..62b92f0 100755 --- a/docs/tools/changelog2rss +++ b/docs/tools/changelog2rss @@ -2,10 +2,6 @@ require 'parsedate' -SITE_TITLE = `pwd`.chomp.split('/').last - -LISTING_TYPE = 0 - class ChangeLogEntry attr_accessor :category, :time, :title, :content, :author -- 2.30.2